- loop-like
- петлевидный
English-Russian big medical dictionary. 2005.
English-Russian big medical dictionary. 2005.
Loop braid group — The loop braid group is a mathematical group structure that is used in some models of theoretical physics to model the exchange of particles with loop like topologies within three dimensions of space and time.The basic operations which generate a … Wikipedia
Loop nest optimization — (LNO) is a special case of loop transformation, dealing with nested loops, that allows large reductions in the cache bandwidth necessary for some common algorithms.Example: Matrix multiplyMany large mathematical operations on computers end up… … Wikipedia
Loop inversion — is a compiler optimization, a loop transformation, which replaces a while loop by an if block containing a do..while loop. Example in C int i, a [100] ; i = 0; while (i < 100) { a [i] = 0; i++; }is equivalent to: int i, a [100] ; i = 0; if (i … Wikipedia
Loop unwinding — Loop unwinding, also known as loop unrolling, is a loop transformation technique that attempts optimize a program s execution speed at the expense of its size.The goal of loop unwinding is to increase the programs speed by reducing (or… … Wikipedia
LOOP Barcelona — LOOP – THE PLACE FOR VIDEOART LOVERS is the annual meeting point in Barcelona for video art lovers around the world. The platform takes the form of Festival + Fair + Conferences. The LOOP Festival present works of 800 artists to 200.000 visitors… … Wikipedia
Loop splitting — (or loop peeling) is a compiler optimization technique. It attempts to simplify a loop or eliminate dependencies by breaking it into multiple loops which have the same bodies but iterate over different contiguous portions of the index range. A… … Wikipedia
Loop modeling — is a problem in protein structure prediction requiring the prediction of the conformations of loop regions in proteins without the use of a structural template. The problem arises often in homology modeling, where the tertiary structure of an… … Wikipedia
Loop fusion — Loop fusion, also called loop jamming, is a compiler optimization, a loop transformation, which replaces multiple loops with a single one. Example in C int i, a [100] , b [100] ; for (i = 0; i < 100; i++) { a [i] = 1; } for (i = 0; i < 100; i++)… … Wikipedia
Loop performance — indicates the performance of control loops, typically in the context of a regulatory PID loop. Performance refers to the accuracy of a control system s ability to track (output) the desired signals to properly regulate the plant it is attached to … Wikipedia
Loop quantum gravity — Not to be confused with the path integral formulation of LQG, see spin foam. This article is about LQG in its Canonical formulation.. Beyond the Standard Model … Wikipedia
Loop device — In Unix like operating systems, a loop device, vnd (vnode disk), or lofi (loopback file interface) is a pseudo device that makes a file accessible as a block device.Before use, a loop device must be connected to an existing file in the filesystem … Wikipedia